home *** CD-ROM | disk | FTP | other *** search
/ Programming in Microsoft Windows with C# / Programacion en Microsoft Windows con C#.iso / Codigo / Introducción a Windows Forms / ShowFormAndSleep / ShowFormAndSleep.cs next >
Encoding:
Text File  |  2001-01-15  |  453 b   |  21 lines

  1. //-----------------------------------------------
  2. // ShowFormAndSleep.cs ⌐ 2001 by Charles Petzold
  3. //-----------------------------------------------
  4. using System.Threading;
  5. using System.Windows.Forms;
  6.  
  7. class ShowFormAndSleep
  8. {
  9.      public static void Main()
  10.      {
  11.           Form form = new Form();
  12.  
  13.           form.Show();
  14.  
  15.           Thread.Sleep(2500);
  16.  
  17.           form.Text = "My First Form";
  18.  
  19.           Thread.Sleep(2500);
  20.      }
  21. }